describe PostsController do
fixtures :all
it "should raise an error here" do
lambda {
get :edit
}.should raise_error
end
end
|
describe PostsController do
fixtures :all
it "should raise an error here" do
lambda {
get :edit
}.should raise_error
end
end
|