Sha256: 20be2496e22bcde4aa4d4e11b1b31770d6296137cffec5157aec3758d7b6aafa
Contents?: true
Size: 383 Bytes
Versions: 2
Compression:
Stored size: 383 Bytes
Contents
require_relative '../test_helper' module Datacentred class VersionsIntegrationTest < Minitest::Test def test_show_version VCR.use_cassette('show_version') do @versions = Datacentred::Version.show assert @versions.is_a? Array assert_equal @versions.first.id, "1" assert_equal @versions.first.status, "CURRENT" end end end end
Version data entries
2 entries across 2 versions & 1 rubygems
Version | Path |
---|---|
datacentred-0.1.1pre | test/integration/versions_test.rb |
datacentred-0.1.0pre | test/integration/versions_test.rb |