Skip to content

Commit

Permalink
Updated system test
Browse files Browse the repository at this point in the history
  • Loading branch information
tsoganov committed Mar 26, 2024
1 parent 0d312a6 commit e7167cd
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 7 deletions.
6 changes: 3 additions & 3 deletions Gemfile
Original file line number Diff line number Diff line change
Expand Up @@ -5,14 +5,14 @@ gem 'bootsnap', '~> 1.18.0', require: false
gem 'figaro', '~> 1.2.0'
gem 'jbuilder'
gem 'mimemagic', '~> 0.4.3'
gem 'passenger', '>= 5.3.2', require: 'phusion_passenger/rack_handler'
gem 'pg', '~> 1.5.0'
gem 'rails', '>= 6.0.3.1'
gem 'recaptcha', '~> 5.8', require: 'recaptcha/rails'
gem 'sassc', '~> 2.4'
gem 'sassc-rails'
gem 'simpleidn', '0.2.1' # For Punycode
gem 'uglifier'
gem 'passenger', '>= 5.3.2', require: 'phusion_passenger/rack_handler'

group :development do
gem 'listen', '>= 3.0.5', '< 3.9'
Expand All @@ -21,10 +21,10 @@ end
group :development, :test do
gem 'apparition', github: 'twalpole/apparition', ref: 'ca86be4d54af835d531dbcd2b86e7b2c77f85f34'
gem 'capybara'
gem 'pry'
gem 'unicorn'
gem 'mina', '~> 1.2.4'
gem 'pry'
gem 'puma'
gem 'unicorn'
gem 'webmock'
end

Expand Down
2 changes: 1 addition & 1 deletion Gemfile.lock
Original file line number Diff line number Diff line change
Expand Up @@ -268,4 +268,4 @@ DEPENDENCIES
webmock

BUNDLED WITH
2.3.11
2.5.7
6 changes: 3 additions & 3 deletions test/system/whois_records/details/base_test.rb
Original file line number Diff line number Diff line change
Expand Up @@ -51,9 +51,9 @@ def test_registrant_details
visit whois_record_url(name: @whois_record.name)

within '.registrant' do
assert_text 'Name Not Disclosed'
assert_text 'Email Not Disclosed'
assert_text 'Phone Not Disclosed'
assert_text 'Name John'
assert_text 'Email [email protected]'
assert_text '+555.555'
assert_text 'Last update Not Disclosed - Visit www.internet.ee for web-based WHOIS'
end
end
Expand Down

0 comments on commit e7167cd

Please sign in to comment.