summaryrefslogtreecommitdiff
path: root/test/integration/os_detection_test.rb
diff options
context:
space:
mode:
authorAzul <azul@leap.se>2013-12-13 11:13:08 +0100
committerAzul <azul@leap.se>2013-12-13 11:13:19 +0100
commitce99e9892dc5f807e072be8161c19f4969b1dace (patch)
tree024624e452fe5357f8bac328572578ee3d87719d /test/integration/os_detection_test.rb
parent8fba6fae51e96ec3330896d107ab01fce2e322d9 (diff)
minor: rename test
Diffstat (limited to 'test/integration/os_detection_test.rb')
-rw-r--r--test/integration/os_detection_test.rb24
1 files changed, 24 insertions, 0 deletions
diff --git a/test/integration/os_detection_test.rb b/test/integration/os_detection_test.rb
new file mode 100644
index 0000000..cb254aa
--- /dev/null
+++ b/test/integration/os_detection_test.rb
@@ -0,0 +1,24 @@
+require 'test_helper'
+
+class OsDetectionTest < BrowserIntegrationTest
+
+ setup do
+ Capybara.current_driver = Capybara.javascript_driver
+ end
+
+ test "old windows shows deactivated download" do
+ page.driver.headers = { "User-Agent" => "Win98" }
+ visit '/'
+ assert_selector "html.oldwin"
+ assert has_text? "not available"
+ end
+
+ test "android shows android download" do
+ page.driver.headers = { "User-Agent" => "Android" }
+ visit '/'
+ assert_selector "html.android"
+ assert has_no_text? "not available"
+ assert_selector "small", text: "Android"
+ end
+
+end