blob: 6d9a648d8fcacbe094baba725981b8bbbb275076 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
require 'test_helper'
class OsDetectionTest < BrowserIntegrationTest
test "old windows shows deactivated download" do
page.driver.add_headers "User-Agent" => "Win98"
visit '/'
assert_selector "html.oldwin"
assert has_text? "not available"
end
test "android shows android download" do
page.driver.add_headers "User-Agent" => "Android"
visit '/'
assert_selector "html.android"
assert has_no_text? "not available"
assert_selector "small", text: "Android"
end
end
|