mirror of
https://github.com/neocities/neocities.git
synced 2025-04-24 17:22:35 +02:00
11 lines
No EOL
243 B
Ruby
11 lines
No EOL
243 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 Site'
|
|
page.must_have_content('Create a New Website')
|
|
end
|
|
end |