mirror of
https://github.com/fspc/bike-database.git
synced 2025-04-04 10:03:22 -04:00
13 lines
263 B
Ruby
13 lines
263 B
Ruby
require 'spec_helper'
|
|
|
|
describe "bikes/show" do
|
|
before(:each) do
|
|
@bike = assign(:bike, stub_model(Bike))
|
|
end
|
|
|
|
it "renders attributes in <p>" do
|
|
render
|
|
# Run the generator again with the --webrat flag if you want to use webrat matchers
|
|
end
|
|
end
|