contact_us 0.1.5 → 0.2.0

Sign up to get free protection for your applications and to get access to all the features.
@@ -1,24 +0,0 @@
1
- require 'spec_helper'
2
-
3
- describe ContactUs do
4
-
5
- it "should be valid" do
6
- ContactUs.should be_a(Module)
7
- end
8
-
9
- describe 'setup block' do
10
- it 'should yield self' do
11
- ContactUs.setup do |config|
12
- ContactUs.should eql(config)
13
- end
14
- end
15
- end
16
-
17
- describe 'mailer_to' do
18
- it 'should be configurable' do
19
- ContactUs.mailer_to = "contact@please-change-me.com"
20
- ContactUs.mailer_to.should eql("contact@please-change-me.com")
21
- end
22
- end
23
-
24
- end