Sha256: beb04ec9177ee108e7d085e39c2b0d581e6a8eec59b38649978f5501dae623da
Contents?: true
Size: 1.34 KB
Versions: 1
Compression:
Stored size: 1.34 KB
Contents
require "test_helper" require "yaml" module Cogy class InventoryTest < ActionDispatch::IntegrationTest include Engine.routes.url_helpers setup { @routes = Engine.routes } def test_valid_yaml with_config(bundle_name: "hyu", bundle_version: "5.0", bundle_description: "Yet another bundle", command_load_paths: ["cogy"]) do |inv| assert_equal "hyu", inv["name"] assert_equal "5.0", inv["version"] assert_equal "Yet another bundle", inv["description"] end end def test_cog_bundle_version assert_equal 4, fetch_inventory["cog_bundle_version"] end def test_bundle_version_lambda with_config(bundle_version: -> { 1 + 2 }) do |inv| assert_equal 3, inv["version"] end end def test_commands_section with_config(executable_path: "/bin/no") do |inv| expected = { "executable" => "/bin/no", "description" => "Print a foo", "rules" => ["allow"] } assert_equal expected, inv["commands"]["say_foo"] end end def test_without_commands without_commands do refute_includes fetch_inventory.keys, "commands" end end def test_content_type get "/cogy/inventory" assert_equal "application/x-yaml", response.content_type end end end
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
cogy-0.1.1 | test/integration/inventory_test.rb |