pacecar 1.5.2 → 1.5.3
Sign up to get free protection for your applications and to get access to all the features.
- data/.gitignore +6 -0
- data/.travis.yml +4 -0
- data/Appraisals +22 -0
- data/Gemfile +1 -7
- data/Gemfile.lock +129 -0
- data/README.md +33 -33
- data/Rakefile +2 -19
- data/gemfiles/rails-3.0.11-database-mysql.gemfile +8 -0
- data/gemfiles/rails-3.0.11-database-mysql.gemfile.lock +134 -0
- data/gemfiles/rails-3.0.11-database-mysql2.gemfile +8 -0
- data/gemfiles/rails-3.0.11-database-mysql2.gemfile.lock +134 -0
- data/gemfiles/rails-3.0.11-database-pg.gemfile +8 -0
- data/gemfiles/rails-3.0.11-database-pg.gemfile.lock +134 -0
- data/gemfiles/rails-3.0.11-database-sqlite3-ruby.gemfile +8 -0
- data/gemfiles/rails-3.0.11-database-sqlite3-ruby.gemfile.lock +136 -0
- data/gemfiles/rails-3.0.11-database-sqlite3.gemfile +8 -0
- data/gemfiles/rails-3.0.11-database-sqlite3.gemfile.lock +134 -0
- data/gemfiles/rails-3.1.3-database-mysql.gemfile +8 -0
- data/gemfiles/rails-3.1.3-database-mysql.gemfile.lock +144 -0
- data/gemfiles/rails-3.1.3-database-mysql2.gemfile +8 -0
- data/gemfiles/rails-3.1.3-database-mysql2.gemfile.lock +144 -0
- data/gemfiles/rails-3.1.3-database-pg.gemfile +8 -0
- data/gemfiles/rails-3.1.3-database-pg.gemfile.lock +144 -0
- data/gemfiles/rails-3.1.3-database-sqlite3-ruby.gemfile +8 -0
- data/gemfiles/rails-3.1.3-database-sqlite3-ruby.gemfile.lock +146 -0
- data/gemfiles/rails-3.1.3-database-sqlite3.gemfile +8 -0
- data/gemfiles/rails-3.1.3-database-sqlite3.gemfile.lock +144 -0
- data/lib/pacecar.rb +1 -0
- data/lib/pacecar/helpers.rb +1 -1
- data/lib/pacecar/version.rb +3 -0
- data/pacecar.gemspec +25 -0
- data/spec/associations_spec.rb +32 -0
- data/spec/boolean_spec.rb +30 -0
- data/spec/datetime_spec.rb +92 -0
- data/spec/dummy/Rakefile +7 -0
- data/spec/dummy/app/controllers/application_controller.rb +3 -0
- data/spec/dummy/app/helpers/application_helper.rb +2 -0
- data/spec/dummy/app/models/article.rb +5 -0
- data/spec/dummy/app/models/comment.rb +5 -0
- data/spec/dummy/app/models/mammal.rb +7 -0
- data/spec/dummy/app/models/post.rb +14 -0
- data/spec/dummy/app/models/user.rb +14 -0
- data/spec/dummy/app/views/layouts/application.html.erb +14 -0
- data/spec/dummy/config.ru +4 -0
- data/spec/dummy/config/application.rb +45 -0
- data/spec/dummy/config/boot.rb +10 -0
- data/spec/dummy/config/database.yml +51 -0
- data/spec/dummy/config/environment.rb +5 -0
- data/spec/dummy/config/environments/development.rb +26 -0
- data/spec/dummy/config/environments/production.rb +49 -0
- data/spec/dummy/config/environments/test.rb +35 -0
- data/spec/dummy/config/initializers/backtrace_silencers.rb +7 -0
- data/spec/dummy/config/initializers/inflections.rb +10 -0
- data/spec/dummy/config/initializers/mime_types.rb +5 -0
- data/spec/dummy/config/initializers/secret_token.rb +7 -0
- data/spec/dummy/config/initializers/session_store.rb +8 -0
- data/spec/dummy/config/locales/en.yml +5 -0
- data/spec/dummy/config/routes.rb +58 -0
- data/spec/dummy/db/migrate/20100419201348_create_schema.rb +37 -0
- data/spec/dummy/public/404.html +26 -0
- data/spec/dummy/public/422.html +26 -0
- data/spec/dummy/public/500.html +26 -0
- data/spec/dummy/public/favicon.ico +0 -0
- data/spec/dummy/public/javascripts/application.js +2 -0
- data/spec/dummy/public/javascripts/controls.js +965 -0
- data/spec/dummy/public/javascripts/dragdrop.js +974 -0
- data/spec/dummy/public/javascripts/effects.js +1123 -0
- data/spec/dummy/public/javascripts/prototype.js +6001 -0
- data/spec/dummy/public/javascripts/rails.js +191 -0
- data/spec/dummy/public/stylesheets/.gitkeep +0 -0
- data/spec/dummy/script/rails +6 -0
- data/spec/duration_spec.rb +22 -0
- data/spec/factories.rb +26 -0
- data/spec/helpers_spec.rb +49 -0
- data/spec/integration/navigation_spec.rb +9 -0
- data/spec/limit_spec.rb +25 -0
- data/spec/numeric_spec.rb +43 -0
- data/spec/order_spec.rb +22 -0
- data/spec/pacecar_spec.rb +7 -0
- data/spec/polymorph_spec.rb +18 -0
- data/spec/presence_spec.rb +23 -0
- data/spec/ranking_spec.rb +63 -0
- data/spec/search_spec.rb +63 -0
- data/spec/spec_helper.rb +38 -0
- data/spec/state_spec.rb +69 -0
- metadata +202 -10
@@ -0,0 +1,191 @@
|
|
1
|
+
(function() {
|
2
|
+
// Technique from Juriy Zaytsev
|
3
|
+
// http://thinkweb2.com/projects/prototype/detecting-event-support-without-browser-sniffing/
|
4
|
+
function isEventSupported(eventName) {
|
5
|
+
var el = document.createElement('div');
|
6
|
+
eventName = 'on' + eventName;
|
7
|
+
var isSupported = (eventName in el);
|
8
|
+
if (!isSupported) {
|
9
|
+
el.setAttribute(eventName, 'return;');
|
10
|
+
isSupported = typeof el[eventName] == 'function';
|
11
|
+
}
|
12
|
+
el = null;
|
13
|
+
return isSupported;
|
14
|
+
}
|
15
|
+
|
16
|
+
function isForm(element) {
|
17
|
+
return Object.isElement(element) && element.nodeName.toUpperCase() == 'FORM'
|
18
|
+
}
|
19
|
+
|
20
|
+
function isInput(element) {
|
21
|
+
if (Object.isElement(element)) {
|
22
|
+
var name = element.nodeName.toUpperCase()
|
23
|
+
return name == 'INPUT' || name == 'SELECT' || name == 'TEXTAREA'
|
24
|
+
}
|
25
|
+
else return false
|
26
|
+
}
|
27
|
+
|
28
|
+
var submitBubbles = isEventSupported('submit'),
|
29
|
+
changeBubbles = isEventSupported('change')
|
30
|
+
|
31
|
+
if (!submitBubbles || !changeBubbles) {
|
32
|
+
// augment the Event.Handler class to observe custom events when needed
|
33
|
+
Event.Handler.prototype.initialize = Event.Handler.prototype.initialize.wrap(
|
34
|
+
function(init, element, eventName, selector, callback) {
|
35
|
+
init(element, eventName, selector, callback)
|
36
|
+
// is the handler being attached to an element that doesn't support this event?
|
37
|
+
if ( (!submitBubbles && this.eventName == 'submit' && !isForm(this.element)) ||
|
38
|
+
(!changeBubbles && this.eventName == 'change' && !isInput(this.element)) ) {
|
39
|
+
// "submit" => "emulated:submit"
|
40
|
+
this.eventName = 'emulated:' + this.eventName
|
41
|
+
}
|
42
|
+
}
|
43
|
+
)
|
44
|
+
}
|
45
|
+
|
46
|
+
if (!submitBubbles) {
|
47
|
+
// discover forms on the page by observing focus events which always bubble
|
48
|
+
document.on('focusin', 'form', function(focusEvent, form) {
|
49
|
+
// special handler for the real "submit" event (one-time operation)
|
50
|
+
if (!form.retrieve('emulated:submit')) {
|
51
|
+
form.on('submit', function(submitEvent) {
|
52
|
+
var emulated = form.fire('emulated:submit', submitEvent, true)
|
53
|
+
// if custom event received preventDefault, cancel the real one too
|
54
|
+
if (emulated.returnValue === false) submitEvent.preventDefault()
|
55
|
+
})
|
56
|
+
form.store('emulated:submit', true)
|
57
|
+
}
|
58
|
+
})
|
59
|
+
}
|
60
|
+
|
61
|
+
if (!changeBubbles) {
|
62
|
+
// discover form inputs on the page
|
63
|
+
document.on('focusin', 'input, select, texarea', function(focusEvent, input) {
|
64
|
+
// special handler for real "change" events
|
65
|
+
if (!input.retrieve('emulated:change')) {
|
66
|
+
input.on('change', function(changeEvent) {
|
67
|
+
input.fire('emulated:change', changeEvent, true)
|
68
|
+
})
|
69
|
+
input.store('emulated:change', true)
|
70
|
+
}
|
71
|
+
})
|
72
|
+
}
|
73
|
+
|
74
|
+
function handleRemote(element) {
|
75
|
+
var method, url, params;
|
76
|
+
|
77
|
+
var event = element.fire("ajax:before");
|
78
|
+
if (event.stopped) return false;
|
79
|
+
|
80
|
+
if (element.tagName.toLowerCase() === 'form') {
|
81
|
+
method = element.readAttribute('method') || 'post';
|
82
|
+
url = element.readAttribute('action');
|
83
|
+
params = element.serialize();
|
84
|
+
} else {
|
85
|
+
method = element.readAttribute('data-method') || 'get';
|
86
|
+
url = element.readAttribute('href');
|
87
|
+
params = {};
|
88
|
+
}
|
89
|
+
|
90
|
+
new Ajax.Request(url, {
|
91
|
+
method: method,
|
92
|
+
parameters: params,
|
93
|
+
evalScripts: true,
|
94
|
+
|
95
|
+
onComplete: function(request) { element.fire("ajax:complete", request); },
|
96
|
+
onSuccess: function(request) { element.fire("ajax:success", request); },
|
97
|
+
onFailure: function(request) { element.fire("ajax:failure", request); }
|
98
|
+
});
|
99
|
+
|
100
|
+
element.fire("ajax:after");
|
101
|
+
}
|
102
|
+
|
103
|
+
function handleMethod(element) {
|
104
|
+
var method = element.readAttribute('data-method'),
|
105
|
+
url = element.readAttribute('href'),
|
106
|
+
csrf_param = $$('meta[name=csrf-param]')[0],
|
107
|
+
csrf_token = $$('meta[name=csrf-token]')[0];
|
108
|
+
|
109
|
+
var form = new Element('form', { method: "POST", action: url, style: "display: none;" });
|
110
|
+
element.parentNode.insert(form);
|
111
|
+
|
112
|
+
if (method !== 'post') {
|
113
|
+
var field = new Element('input', { type: 'hidden', name: '_method', value: method });
|
114
|
+
form.insert(field);
|
115
|
+
}
|
116
|
+
|
117
|
+
if (csrf_param) {
|
118
|
+
var param = csrf_param.readAttribute('content'),
|
119
|
+
token = csrf_token.readAttribute('content'),
|
120
|
+
field = new Element('input', { type: 'hidden', name: param, value: token });
|
121
|
+
form.insert(field);
|
122
|
+
}
|
123
|
+
|
124
|
+
form.submit();
|
125
|
+
}
|
126
|
+
|
127
|
+
|
128
|
+
document.on("click", "*[data-confirm]", function(event, element) {
|
129
|
+
var message = element.readAttribute('data-confirm');
|
130
|
+
if (!confirm(message)) event.stop();
|
131
|
+
});
|
132
|
+
|
133
|
+
document.on("click", "a[data-remote]", function(event, element) {
|
134
|
+
if (event.stopped) return;
|
135
|
+
handleRemote(element);
|
136
|
+
event.stop();
|
137
|
+
});
|
138
|
+
|
139
|
+
document.on("click", "a[data-method]", function(event, element) {
|
140
|
+
if (event.stopped) return;
|
141
|
+
handleMethod(element);
|
142
|
+
event.stop();
|
143
|
+
});
|
144
|
+
|
145
|
+
document.on("submit", function(event) {
|
146
|
+
var element = event.findElement(),
|
147
|
+
message = element.readAttribute('data-confirm');
|
148
|
+
if (message && !confirm(message)) {
|
149
|
+
event.stop();
|
150
|
+
return false;
|
151
|
+
}
|
152
|
+
|
153
|
+
var inputs = element.select("input[type=submit][data-disable-with]");
|
154
|
+
inputs.each(function(input) {
|
155
|
+
input.disabled = true;
|
156
|
+
input.writeAttribute('data-original-value', input.value);
|
157
|
+
input.value = input.readAttribute('data-disable-with');
|
158
|
+
});
|
159
|
+
|
160
|
+
var element = event.findElement("form[data-remote]");
|
161
|
+
if (element) {
|
162
|
+
handleRemote(element);
|
163
|
+
event.stop();
|
164
|
+
}
|
165
|
+
});
|
166
|
+
|
167
|
+
document.on("ajax:after", "form", function(event, element) {
|
168
|
+
var inputs = element.select("input[type=submit][disabled=true][data-disable-with]");
|
169
|
+
inputs.each(function(input) {
|
170
|
+
input.value = input.readAttribute('data-original-value');
|
171
|
+
input.removeAttribute('data-original-value');
|
172
|
+
input.disabled = false;
|
173
|
+
});
|
174
|
+
});
|
175
|
+
|
176
|
+
Ajax.Responders.register({
|
177
|
+
onCreate: function(request) {
|
178
|
+
var csrf_meta_tag = $$('meta[name=csrf-token]')[0];
|
179
|
+
|
180
|
+
if (csrf_meta_tag) {
|
181
|
+
var header = 'X-CSRF-Token',
|
182
|
+
token = csrf_meta_tag.readAttribute('content');
|
183
|
+
|
184
|
+
if (!request.options.requestHeaders) {
|
185
|
+
request.options.requestHeaders = {};
|
186
|
+
}
|
187
|
+
request.options.requestHeaders[header] = token;
|
188
|
+
}
|
189
|
+
}
|
190
|
+
});
|
191
|
+
})();
|
File without changes
|
@@ -0,0 +1,6 @@
|
|
1
|
+
#!/usr/bin/env ruby
|
2
|
+
# This command will automatically be run when you run "rails" with Rails 3 gems installed from the root of your application.
|
3
|
+
|
4
|
+
APP_PATH = File.expand_path('../../config/application', __FILE__)
|
5
|
+
require File.expand_path('../../config/boot', __FILE__)
|
6
|
+
require 'rails/commands'
|
@@ -0,0 +1,22 @@
|
|
1
|
+
require 'spec_helper'
|
2
|
+
|
3
|
+
describe 'Duration' do
|
4
|
+
|
5
|
+
before do
|
6
|
+
@same_user = Factory :user, :created_at => 15.days.ago.midnight, :updated_at => 15.days.ago.midnight
|
7
|
+
@updated_user = Factory :user, :created_at => 15.days.ago.midnight, :updated_at => 1.days.ago.midnight
|
8
|
+
end
|
9
|
+
|
10
|
+
it "should set the correct expected values for a with_duration_of datetime column method" do
|
11
|
+
User.with_duration_of(14, :created_at, :updated_at).should == [@updated_user]
|
12
|
+
end
|
13
|
+
|
14
|
+
it "should set the correct expected values for a with_duration_over datetime column method" do
|
15
|
+
User.with_duration_over(10, :created_at, :updated_at).should == [@updated_user]
|
16
|
+
end
|
17
|
+
|
18
|
+
it "should set the correct expected values for a with_duration_under datetime column method" do
|
19
|
+
User.with_duration_under(10, :created_at, :updated_at).should == [@same_user]
|
20
|
+
end
|
21
|
+
|
22
|
+
end
|
data/spec/factories.rb
ADDED
@@ -0,0 +1,26 @@
|
|
1
|
+
FactoryGirl.define do
|
2
|
+
|
3
|
+
sequence :age do |n|
|
4
|
+
n.to_i
|
5
|
+
end
|
6
|
+
|
7
|
+
sequence :rating do |n|
|
8
|
+
n.to_f
|
9
|
+
end
|
10
|
+
|
11
|
+
factory :comment do
|
12
|
+
association :user
|
13
|
+
end
|
14
|
+
|
15
|
+
factory :mammal do
|
16
|
+
end
|
17
|
+
|
18
|
+
factory :post do
|
19
|
+
end
|
20
|
+
|
21
|
+
factory :user do
|
22
|
+
age { Factory.next :age }
|
23
|
+
rating { Factory.next :rating }
|
24
|
+
end
|
25
|
+
|
26
|
+
end
|
@@ -0,0 +1,49 @@
|
|
1
|
+
require 'spec_helper'
|
2
|
+
|
3
|
+
describe 'Helpers' do
|
4
|
+
|
5
|
+
describe "A class without a db table" do
|
6
|
+
it "should return an empty array when asked about #safe_columns" do
|
7
|
+
Article.send(:safe_columns).should == []
|
8
|
+
end
|
9
|
+
|
10
|
+
it "should survive an include of Pacecar" do
|
11
|
+
lambda { Article.send :include, Pacecar }.should_not raise_error
|
12
|
+
end
|
13
|
+
end
|
14
|
+
|
15
|
+
describe "A class with a db table" do
|
16
|
+
it "should should return columns for #safe_column_names" do
|
17
|
+
Comment.safe_column_names.should == ['id', 'user_id', 'description', 'rating', 'created_at', 'updated_at']
|
18
|
+
end
|
19
|
+
end
|
20
|
+
|
21
|
+
describe "A class with many column types" do
|
22
|
+
it "should return boolean columns for #boolean_column_names" do
|
23
|
+
User.boolean_column_names.should == ['admin']
|
24
|
+
end
|
25
|
+
|
26
|
+
it "should return non boolean columns for #non_boolean_column_names" do
|
27
|
+
User.non_boolean_column_names.should == ['id', 'approved_at', 'rejected_at', 'last_posted_on', 'first_name', 'last_name', 'description', 'age', 'rating', 'balance', 'created_at', 'updated_at']
|
28
|
+
end
|
29
|
+
|
30
|
+
it "should return datetime columns for #datetime_column_names" do
|
31
|
+
User.datetime_column_names.should == ['approved_at', 'rejected_at', 'last_posted_on', 'created_at', 'updated_at']
|
32
|
+
end
|
33
|
+
|
34
|
+
it "should return text and string columns for #text_and_string_column_names" do
|
35
|
+
User.text_and_string_column_names.should == ['first_name', 'last_name', 'description']
|
36
|
+
end
|
37
|
+
|
38
|
+
it "should return numeric columns for #numeric_column_names" do
|
39
|
+
User.numeric_column_names.should == ['id', 'age', 'rating', 'balance']
|
40
|
+
end
|
41
|
+
end
|
42
|
+
|
43
|
+
describe "A class with a state column should" do
|
44
|
+
it "should return all non state text and string columns for #non_state_text_and_string_column_names" do
|
45
|
+
Post.non_state_text_and_string_columns.should == ['title', 'body']
|
46
|
+
end
|
47
|
+
end
|
48
|
+
|
49
|
+
end
|
data/spec/limit_spec.rb
ADDED
@@ -0,0 +1,25 @@
|
|
1
|
+
require 'spec_helper'
|
2
|
+
|
3
|
+
describe 'Limit' do
|
4
|
+
|
5
|
+
before do
|
6
|
+
50.times { Factory :user }
|
7
|
+
end
|
8
|
+
|
9
|
+
it "should set the correct expected values for a by_ column method" do
|
10
|
+
User.count.should == 50
|
11
|
+
User.limited.all.size.should == 10
|
12
|
+
end
|
13
|
+
|
14
|
+
it "should set the correct expected values for a by_ column method when sent args" do
|
15
|
+
User.count.should == 50
|
16
|
+
User.limited(20).all.size.should == 20
|
17
|
+
end
|
18
|
+
|
19
|
+
it "should set the correct expected values for a by_ column method when per_page defined" do
|
20
|
+
User.expects(:per_page).returns 30
|
21
|
+
User.count.should == 50
|
22
|
+
User.limited.all.size.should == 30
|
23
|
+
end
|
24
|
+
|
25
|
+
end
|
@@ -0,0 +1,43 @@
|
|
1
|
+
require 'spec_helper'
|
2
|
+
|
3
|
+
describe 'Numeric' do
|
4
|
+
|
5
|
+
before do
|
6
|
+
@young = Factory :user, :age => 11, :rating => 10.0
|
7
|
+
@legal = Factory :user, :age => 21, :rating => 7.5
|
8
|
+
@older = Factory :user, :age => 31, :rating => 5.0
|
9
|
+
end
|
10
|
+
|
11
|
+
it "should set the correct expected values for a _greater_than column method for an integer column" do
|
12
|
+
User.age_greater_than(21).should == [@older]
|
13
|
+
end
|
14
|
+
|
15
|
+
it "should set the correct expected values for a _greater_than_or_equal_to column method for an integer column" do
|
16
|
+
User.age_greater_than_or_equal_to(21).should == [@legal, @older]
|
17
|
+
end
|
18
|
+
|
19
|
+
it "should set the correct expected values for a _less_than column method for an integer column" do
|
20
|
+
User.age_less_than(21).should == [@young]
|
21
|
+
end
|
22
|
+
|
23
|
+
it "should set the correct expected values for a _less_than_or_equal_to column method for an integer column" do
|
24
|
+
User.age_less_than_or_equal_to(21).should == [@young, @legal]
|
25
|
+
end
|
26
|
+
|
27
|
+
it "should set the correct expected values for a _greater_than column method for a float column" do
|
28
|
+
User.rating_greater_than(7.5).should == [@young]
|
29
|
+
end
|
30
|
+
|
31
|
+
it "should set the correct expected values for a _greater_than_or_equal_to column method for a float column" do
|
32
|
+
User.rating_greater_than_or_equal_to(7.5).should == [@young, @legal]
|
33
|
+
end
|
34
|
+
|
35
|
+
it "should set the correct expected values for a _less_than column method for a float column" do
|
36
|
+
User.rating_less_than(7.5).should == [@older]
|
37
|
+
end
|
38
|
+
|
39
|
+
it "should set the correct expected values for a _less_than_or_equal_to column method for a float column" do
|
40
|
+
User.rating_less_than_or_equal_to(7.5).should == [@legal, @older]
|
41
|
+
end
|
42
|
+
|
43
|
+
end
|
data/spec/order_spec.rb
ADDED
@@ -0,0 +1,22 @@
|
|
1
|
+
require 'spec_helper'
|
2
|
+
|
3
|
+
describe 'Order' do
|
4
|
+
|
5
|
+
before do
|
6
|
+
@first = Factory :user, :first_name => 'Abe'
|
7
|
+
@last = Factory :user, :first_name => 'Zed'
|
8
|
+
end
|
9
|
+
|
10
|
+
it "should set the correct expected values for a by_ column method with no args" do
|
11
|
+
User.by_first_name.should == [@first, @last]
|
12
|
+
end
|
13
|
+
|
14
|
+
it "should set the correct expected values for a by_ column method with asc args" do
|
15
|
+
User.by_first_name(:asc).should == [@first, @last]
|
16
|
+
end
|
17
|
+
|
18
|
+
it "should set the correct expected values for a by_ column method with desc args" do
|
19
|
+
User.by_first_name(:desc).should == [@last, @first]
|
20
|
+
end
|
21
|
+
|
22
|
+
end
|
@@ -0,0 +1,18 @@
|
|
1
|
+
require 'spec_helper'
|
2
|
+
|
3
|
+
describe 'Polymorph' do
|
4
|
+
|
5
|
+
before do
|
6
|
+
@owned_by_user = Factory :post, :owner_type => 'User'
|
7
|
+
@owned_by_mammal = Factory :post, :owner_type => 'Mammal'
|
8
|
+
end
|
9
|
+
|
10
|
+
it "should set the correct expected values on a _for column method with Class" do
|
11
|
+
Post.for_owner_type(User).should == [@owned_by_user]
|
12
|
+
end
|
13
|
+
|
14
|
+
it "should set the correct expected values on a _for column method with String" do
|
15
|
+
Post.for_owner_type('User').should == [@owned_by_user]
|
16
|
+
end
|
17
|
+
|
18
|
+
end
|
@@ -0,0 +1,23 @@
|
|
1
|
+
require 'spec_helper'
|
2
|
+
|
3
|
+
describe 'Presence' do
|
4
|
+
|
5
|
+
before do
|
6
|
+
@not_null = Factory :user, :first_name => 'Fake'
|
7
|
+
@null = Factory :user, :first_name => nil
|
8
|
+
end
|
9
|
+
|
10
|
+
it "should set the correct expected values for a _present column method" do
|
11
|
+
User.first_name_present.should == [@not_null]
|
12
|
+
end
|
13
|
+
|
14
|
+
it "should set the correct expected values for a _missing column method" do
|
15
|
+
User.first_name_missing.should == [@null]
|
16
|
+
end
|
17
|
+
|
18
|
+
it "should not setup methods for boolean columns" do
|
19
|
+
lambda { User.admin_missing }.should raise_error(NoMethodError)
|
20
|
+
lambda { User.admin_present }.should raise_error(NoMethodError)
|
21
|
+
end
|
22
|
+
|
23
|
+
end
|