Skip to content

Commit

Permalink
prepare for the specs
Browse files Browse the repository at this point in the history
  • Loading branch information
amatsuda committed Feb 5, 2011
1 parent 30cbc38 commit ff721e0
Show file tree
Hide file tree
Showing 5 changed files with 39 additions and 9 deletions.
1 change: 1 addition & 0 deletions .rspec
Original file line number Diff line number Diff line change
@@ -1 +1,2 @@
--color
--format=d
7 changes: 0 additions & 7 deletions spec/kaminari_spec.rb

This file was deleted.

29 changes: 27 additions & 2 deletions spec/spec_helper.rb
Original file line number Diff line number Diff line change
@@ -1,12 +1,37 @@
$LOAD_PATH.unshift(File.join(File.dirname(__FILE__), '..', 'lib'))
$LOAD_PATH.unshift(File.dirname(__FILE__))
require 'rspec'
require 'active_support/all'
require 'active_record'
require 'rails'
require 'action_controller/railtie'
require 'action_view/railtie'
require 'rspec/rails'

ActiveRecord::Base.configurations = {'test' => {:adapter => 'sqlite3', :database => ':memory:'}}
ActiveRecord::Base.establish_connection('test')

require 'kaminari'

app = Class.new(Rails::Application)
app.config.secret_token = "3b7cd727ee24e8444053437c36cc66c4"
app.config.session_store :cookie_store, :key => "_myapp_session"
app.config.active_support.deprecation = :log
app.initialize!

app.routes.draw do
resources :users
end

Object.const_set(:ApplicationHelper, Module.new)

# Requires supporting files with custom matchers and macros, etc,
# in ./support/ and its subdirectories.
Dir["#{File.dirname(__FILE__)}/support/**/*.rb"].each {|f| require f}

RSpec.configure do |config|

config.mock_with :rr
config.before :all do
# ActiveRecord::Base.connection.execute 'CREATE TABLE "users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255))' unless ActiveRecord::Base.connection.table_exists? 'users'
CreateUsers.up unless ActiveRecord::Base.connection.table_exists? 'users'
end
end
8 changes: 8 additions & 0 deletions spec/support/20110128122508_create_users.rb
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
class CreateUsers < ActiveRecord::Migration
def self.up
create_table :users do |t|
t.string :name
t.timestamps
end
end
end
3 changes: 3 additions & 0 deletions spec/support/user.rb
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
class User < ActiveRecord::Base
default_scope order('name')
end

0 comments on commit ff721e0

Please sign in to comment.