Sha256: 0d8ce9c9e1be5fa7e15391e4602326e21f82efa4f85d0b2916746bcf4df2178c
Contents?: true
Size: 987 Bytes
Versions: 2
Compression:
Stored size: 987 Bytes
Contents
# encoding: UTF-8 # Copyright 2012 Twitter, Inc # http://www.apache.org/licenses/LICENSE-2.0 require 'rspec' require 'twitter_cldr' class FastGettext class << self @@locale = :en def locale @@locale end def locale=(value) @@locale = value end end end RSpec.configure do |config| config.mock_with :rr config.filter_run(:focus => true) config.run_all_when_everything_filtered = true config.filter_run_excluding(:slow => true) unless ENV['FULL_SPEC'] config.before(:each) do FastGettext.locale = :en end end RSpec::Matchers.define :match_normalized do |expected| match do |actual| expected.localize.normalize(:using => :NFKC).to_s == actual.localize.normalize(:using => :NFKC).to_s end end def check_token_list(got, expected) got.size.should == expected.size expected.each_with_index do |exp_hash, index| exp_hash.each_pair do |exp_key, exp_val| got[index].send(exp_key).should == exp_val end end end
Version data entries
2 entries across 2 versions & 1 rubygems
Version | Path |
---|---|
twitter_cldr-1.9.1 | spec/spec_helper.rb |
twitter_cldr-1.9.0 | spec/spec_helper.rb |