Sha256: c5cedc24536853ae6ff9d002d907f0fb3a31a6310dddafb5a302bc7ea5b0d116
Contents?: true
Size: 1.38 KB
Versions: 1
Compression:
Stored size: 1.38 KB
Contents
require 'spec_helper' describe Interpret::Translation do let(:en_yml) {""" en: p1: Hello world! folder1: pr1: Hi folder2: pr1: Some other text here folder3: pr1: More phrases sub: name: This is a 2 level subfolder subsub: name: With another nested folder inside other: name: folder """ } def file2db(string_file) hash = YAML.load string_file lang = hash.keys.first records = Interpret::Translation.send(:parse_hash, hash.first[1], lang) Interpret::Translation.transaction do records.each {|x| x.save!} end end describe ".get_tree" do it "should return a hash representing a tree folder structure of the i18n keys" do file2db(en_yml) Interpret::Translation.get_tree('en').should == {'index' => { 'folder1' => {}, 'folder2' => {}, 'folder3' => { 'sub' => { 'subsub' => {} }, 'other' => {} } }} end end describe ".export" do it "should return a hash representing the yml locale file for the given translations" do file2db(en_yml) translations = Interpret::Translation.all Interpret::Translation.export(translations).should == YAML.load(en_yml) end end describe ".import" do pending end describe ".dump" do pending end describe ".update" do pending end end
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
interpret-0.1.2 | spec/models/translation_spec.rb |