Sha256: 28ab8a9ea70cf6bde36f328093e5459e9f1170656185bb179eb2e9ead1627367
Contents?: true
Size: 1.19 KB
Versions: 6
Compression:
Stored size: 1.19 KB
Contents
require 'spec_helper' require 'localeapp/cli/pull' describe Localeapp::CLI::Pull, "#execute" do before do @output = StringIO.new @puller = Localeapp::CLI::Pull.new(:output => @output) end it "makes the api call to the translations endpoint" do with_configuration do expect(@puller).to receive(:api_call).with( :export, :success => :update_backend, :failure => :report_failure, :max_connection_attempts => 3 ) @puller.execute end end end describe Localeapp::CLI::Pull, "#update_backend(response)" do before do @test_data = ['test data'].to_json @output = StringIO.new @puller = Localeapp::CLI::Pull.new(:output => @output) end it "calls the updater" do with_configuration do allow(Localeapp.poller).to receive(:write_synchronization_data!) expect(Localeapp.updater).to receive(:dump).with(['test data']) @puller.update_backend(@test_data) end end it "writes the synchronization data" do with_configuration do allow(Localeapp.updater).to receive(:dump) expect(Localeapp.poller).to receive(:write_synchronization_data!) @puller.update_backend(@test_data) end end end
Version data entries
6 entries across 6 versions & 1 rubygems