blob: a334c735e2f7d880565129f4e9c81d9cbe4f722f (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
require 'spec_helper'
describe BlogPost do
context "wiring up" do
before(:each) do
@post = Factory(:post)
end
it "saves to the database" do
@post.should_not be_nil
end
end
end
|