Sha256: 550e92d1919ee83bf488b183ef044e5bb6dc84be1c17a506b18612fb630f98dc
Contents?: true
Size: 934 Bytes
Versions: 2
Compression:
Stored size: 934 Bytes
Contents
require 'spec_helper' describe 'word_for_attr' do before(:each) do WhowishWord.words = {} end it "no variables, no entry" do value = WhowishWord.word_for_attr("namespace", "id", "en") value.should == "id(en)" end it "with variables, no entry" do value = WhowishWord.word_for_attr("namespace", "id", "en", :number=>5, :name=>"tanin") value.should == "id(en){number,name}" end it "no variables, with entry" do WhowishWord.words = {"namespace:id(en)" => "hello"} value = WhowishWord.word_for_attr("namespace", "id", "en") value.should == "hello" end it "with variables, with entry" do WhowishWord.words = {"namespace:id(en)" => "hello {name} for {number} times"} value = WhowishWord.word_for_attr("namespace", "id", "en", :number=>5, :name=>"tanin") value.should == "hello tanin for 5 times" end end
Version data entries
2 entries across 2 versions & 1 rubygems
Version | Path |
---|---|
whowish_word-0.3.3 | spec/unit/word_for_attr_spec.rb |
whowish_word-0.3.2 | spec/unit/word_for_attr_spec.rb |