aboutsummaryrefslogtreecommitdiffstats
path: root/actionpack/test/dispatch/system_testing/browser_test.rb
blob: b0ad309492af52d220fb359a56c27f4cf654581f (plain) (blame)
1
2
3
4
5
6
7
8
9
10
require "abstract_unit"
require "action_dispatch/system_testing/browser"

class BrowserTest < ActiveSupport::TestCase
  test "initializing the browser" do
    browser = ActionDispatch::SystemTesting::Browser.new(:chrome, [ 1400, 1400 ])
    assert_equal :chrome, browser.instance_variable_get(:@name)
    assert_equal [ 1400, 1400 ], browser.instance_variable_get(:@screen_size)
  end
end