blob: 1f893217c417428e30105395511713a2f180f916 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
describe RegistrationApp do
include Rack::Test::Methods
def app
RegistrationApp
end
describe 'GET index' do
it 'displays the registration form' do
get '/'
expect(last_response).to be_ok
end
end
end
|