mirror of
https://github.com/fspc/bike-database.git
synced 2025-04-04 10:03:22 -04:00
12 lines
291 B
Ruby
12 lines
291 B
Ruby
require 'spec_helper'
|
|
|
|
describe "Bikes" do
|
|
describe "GET /bikes" 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 bikes_path
|
|
response.status.should be(200)
|
|
end
|
|
end
|
|
end
|