Sha256: eaf05848d2971562de7a7054ef52f6f878cdca1daec44039881466ff4a0f8aca

Contents?: true

Size: 400 Bytes

Versions: 7

Compression:

Stored size: 400 Bytes

Contents

# frozen_string_literal: true

require 'test_helper'
require 'smartling'

describe Smartling do
  it 'can be "instantiated"' do
    assert_instance_of Smartling::Client, Smartling.new
  end

  it 'handles things gracefully', :vcr do
    client = Smartling::Client.new
    assert_instance_of HipsterHash, client.files
    assert_instance_of HipsterHash, client.translations(file_uri: 'boo')
  end
end

Version data entries

7 entries across 7 versions & 1 rubygems

Version Path
smartring-0.0.7 test/smartling_test.rb
smartring-0.0.6 test/smartling_test.rb
smartring-0.0.5 test/smartling_test.rb
smartring-0.0.4 test/smartling_test.rb
smartring-0.0.3 test/smartling_test.rb
smartring-0.0.2 test/smartling_test.rb
smartring-0.0.1 test/smartling_test.rb