mirror of
https://github.com/openfoodfoundation/openfoodnetwork
synced 2026-01-26 20:56:48 +00:00
10 lines
228 B
Ruby
10 lines
228 B
Ruby
describe Spree.user_class do
|
|
context "#create" do
|
|
|
|
it "should send a signup email" do
|
|
Spree::UserMailer.should_receive(:signup_confirmation).and_return(double(:deliver => true))
|
|
create(:user)
|
|
end
|
|
end
|
|
end
|