mirror of
https://github.com/neocities/neocities.git
synced 2025-04-25 09:42:36 +02:00
11 lines
No EOL
246 B
Ruby
11 lines
No EOL
246 B
Ruby
require_relative './environment.rb'
|
|
|
|
describe 'index' do
|
|
include Capybara::DSL
|
|
it 'goes to signup' do
|
|
Capybara.reset_sessions!
|
|
visit '/'
|
|
click_button 'Create My Website'
|
|
page.must_have_content('Create a New Website')
|
|
end
|
|
end |