Files
growstuff/spec/requests/authentications_spec.rb
Miles Gould 5ea91bf56a Added an Authentications table.
Connects users to remote web services, as recommended at
http://asciicasts.com/episodes/235-omniauth-part-1

In addition, we store "token" and "secret" fields.
2013-04-09 16:39:09 +01:00

12 lines
321 B
Ruby

require 'spec_helper'
describe "Authentications" do
describe "GET /authentications" do
it "works! (now write some real specs)" do
# Run the generator again with the --webrat flag if you want to use webrat methods/matchers
get authentications_path
response.status.should be(200)
end
end
end