artpop / crc_site

Canberra Ruby Crew Site #crc

This URL has Read+Write access

schlick (author)
Sat Oct 18 14:34:13 -0700 2008
commit  39fbf0dfc248e39744200e20279175d2bc31818f
tree    cc268024906524e3aed82f1bfebbbf6c7525ac62
parent  da00469b12cdb41860836d969b14789e80e1011a
crc_site / spec / models / meeting_spec.rb
100644 15 lines (12 sloc) 0.318 kb
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
require File.expand_path(File.dirname(__FILE__) + '/../spec_helper')
 
describe Meeting do
  before(:each) do
    @valid_attributes = {
      :date => Time.now,
      :venue => "value for venue"
    }
  end
 
  it "should create a new instance given valid attributes" do
    Meeting.create!(@valid_attributes)
  end
end