Sha256: bdefa196645512942890a2699e39f1b078af69822597134f41ce3063a2e5dc78
Contents?: true
Size: 965 Bytes
Versions: 3
Compression:
Stored size: 965 Bytes
Contents
require 'spec_helper' RSpec.describe 'Data commands' do delegate :run_cmd, to: :TestCodebase def en_data {'en' => {'a' => '1', 'common' => {'hello' => 'Hello'}}} end def en_data_2 {'en' => {'common' => {'hi' => 'Hi'}}} end before do TestCodebase.setup('config/locales/en.yml' => en_data.to_yaml) end after do TestCodebase.teardown end it '#data' do expect(JSON.parse(run_cmd 'data', '-fjson', '-len')).to eq(en_data) end it '#data-merge' do expect(JSON.parse(run_cmd 'data-merge', '-fjson', '-S', en_data_2.to_json)).to eq(en_data.deep_merge en_data_2) end it '#data-write' do expect(JSON.parse(run_cmd 'data-write', '-fjson', '-S', en_data_2.to_json)).to eq(en_data_2) end it '#data-remove' do to_remove = {'en' => {'common' => {'hello' => ''}}} expect(JSON.parse(run_cmd 'data-remove', '-fjson', '-S', to_remove.to_json)).to eq('en' => {'common' => en_data['en']['common'] }) end end
Version data entries
3 entries across 3 versions & 1 rubygems
Version | Path |
---|---|
i18n-tasks-0.8.7 | spec/commands/data_commands_spec.rb |
i18n-tasks-0.9.0.rc1 | spec/commands/data_commands_spec.rb |
i18n-tasks-0.8.6 | spec/commands/data_commands_spec.rb |