2009-11-16 22:28:52 +00:00
|
|
|
require 'rubygems'
|
2010-10-08 18:46:41 +00:00
|
|
|
require 'bundler/setup'
|
2010-12-29 23:01:49 +00:00
|
|
|
|
2010-10-08 18:46:41 +00:00
|
|
|
Bundler.require(:default)
|
2010-12-29 23:01:49 +00:00
|
|
|
|
2010-10-08 18:46:41 +00:00
|
|
|
require 'supermodel' # shouldn't Bundler do this already?
|
2010-10-05 17:09:37 +00:00
|
|
|
require 'active_support/all'
|
2010-07-20 23:00:22 +00:00
|
|
|
require 'matchers'
|
2010-04-13 13:02:39 +00:00
|
|
|
require 'cancan/matchers'
|
2009-11-16 22:28:52 +00:00
|
|
|
|
2010-10-05 17:09:37 +00:00
|
|
|
RSpec.configure do |config|
|
2009-11-16 22:28:52 +00:00
|
|
|
config.mock_with :rr
|
2010-10-08 18:46:41 +00:00
|
|
|
config.before(:each) do
|
|
|
|
Project.delete_all
|
|
|
|
Category.delete_all
|
|
|
|
end
|
2010-12-30 08:43:22 +00:00
|
|
|
config.extend WithModel if defined? WithModel
|
2009-11-16 22:28:52 +00:00
|
|
|
end
|
2009-11-26 17:29:53 +00:00
|
|
|
|
|
|
|
class Ability
|
|
|
|
include CanCan::Ability
|
2010-05-21 20:41:24 +00:00
|
|
|
|
2009-11-26 17:29:53 +00:00
|
|
|
def initialize(user)
|
|
|
|
end
|
|
|
|
end
|
2009-12-13 19:39:02 +00:00
|
|
|
|
2010-10-08 18:46:41 +00:00
|
|
|
class Category < SuperModel::Base
|
|
|
|
has_many :projects
|
|
|
|
end
|
2010-09-03 21:00:46 +00:00
|
|
|
|
2010-10-08 18:46:41 +00:00
|
|
|
class Project < SuperModel::Base
|
|
|
|
belongs_to :category
|
2010-05-25 08:14:01 +00:00
|
|
|
end
|