KrzysztofZalewski::Blog
Yet another programming weblog...
wtorek, 28 lutego 2012
niedziela, 26 lutego 2012
How to proper test scopes (named scopes)
I just read few posts about "how to test named scopes". I'm asking - why should I use FactoryGirl and create tons of unnecessary objects just to test `order(:position).first`?!
How not to do this
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
require 'spec_helper' | |
describe Post do | |
context '#recent' do | |
it 'should return most recent post' do | |
_, post = [Factory(:post), Factory(:post)] | |
Post.recent.should == post | |
end | |
end | |
context '#for_user' do | |
it 'should return only posts created by given user' do | |
post1, post2, _ = [Factory(:post, user_id: 1), Factory(:post, user_id: 1), Factory(:post, user_id: 2)] | |
Post.for_user(1).should == [post1, post2] | |
end | |
end | |
end |
How to do this
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
require 'spec_helper' | |
describe Post do | |
context '#recent' do | |
it 'should return most recent post' do | |
post = mock_model Post | |
Post.should_receive(:order).with('created_at DESC').and_return post | |
post.should_receive(:first).and_return post | |
Post.recent | |
end | |
end | |
context '#for_user' do | |
it 'should return only posts created by given user' do | |
post = mock_model Post | |
Post.should_receive(:where).with(user_id: 1) | |
Post.for_user 1 | |
end | |
end | |
end |
czwartek, 16 lutego 2012
named_accessors: attr_accessors na sterydach
attr_accessor jest świetne (szczególnie jeżeli ktoś przychodzi do Rubiego np. z Javy), ale ma jedną zasadniczą wadę - nazwa zmiennej instancji == nazwa metody (settera i gettera). W 99% to bardzo dobrze, ale dla tego jednego procenta powstało named_accessors.
Mam nadzieję że komuś się kiedyś przyda :)
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
class Foobar | |
def initialize(foo, bar) | |
@foo, @bar = foo, bar | |
end | |
named_reader :foo, as: :foobar | |
named_writer :bar, as: :barbaz | |
# named_accessor :variable_name, as: :method_name | |
end |
poniedziałek, 23 stycznia 2012
param_protected i Devise
Kilka dni temu pisałem już o gemie param_protected. Jeżeli używamy go razem z Devise, będziemy musieli zrobić zmodyfikować kontrolery i dodać definicję dozwolonych parametrów.
Po pierwsze musimy zmapować URL-e na nasze nowe kontrolery.
Po pierwsze musimy zmapować URL-e na nasze nowe kontrolery.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
MyApp::Application.routes.draw do | |
devise_for :users, controllers: { | |
registrations: 'auth/devise/registrations', | |
sessions: 'auth/devise/sessions', | |
# ... | |
} | |
end |
niedziela, 22 stycznia 2012
Hakierzy
Mam dość komentarzy na temat tych ciągłych ataków na rządowe strony. Jak można wypowiadać się na dany temat bez żadnej wiedzy.
Subskrybuj:
Posty (Atom)