You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

21 lines
467 B

13 years ago
shared_examples_for "wiring controller" do
context "wiring" do
include_context "data"
let(:record){Record.new}
13 years ago
before do
sign_in user
@controller.stub(:nested_parent_record => domain)
13 years ago
end
it "#new_model is wired" do
@controller.send(:new_model).user.should == user
end
it "#before_create_save wires" do
@controller.send(:before_create_save, record)
record.user.should == user
end
13 years ago
end
end