Browse Source

Added qunit pages to browser tests.

Martin Edenhofer 11 years ago
parent
commit
a794dd43cf
1 changed files with 49 additions and 0 deletions
  1. 49 0
      test/browser/core.rb

+ 49 - 0
test/browser/core.rb

@@ -0,0 +1,49 @@
+# encoding: utf-8
+require 'browser_test_helper'
+
+class CoreTest < TestCase
+  def test_core
+    tests = [
+      {
+        :name     => 'start',
+        :instance => browser_instance,
+        :url      => browser_url + '/tests-core',
+        :action   => [
+          {
+            :execute => 'wait',
+            :value   => 8,
+          },
+          {
+            :execute      => 'match',
+            :css          => '.result .failed',
+            :value        => '0',
+            :match_result => true,
+          },
+        ],
+      },
+    ]
+    browser_single_test(tests)
+  end
+  def test_form
+    tests = [
+      {
+        :name     => 'start',
+        :instance => browser_instance,
+        :url      => browser_url + '/tests-form',
+        :action   => [
+          {
+            :execute => 'wait',
+            :value   => 8,
+          },
+          {
+            :execute      => 'match',
+            :css          => '.result .failed',
+            :value        => '0',
+            :match_result => true,
+          },
+        ],
+      },
+    ]
+    browser_single_test(tests)
+  end
+end