Sha256: 6b5cf970b4f779c79fc4af129c66d8258dae15ca1eaca6de202639c859320976
Contents?: true
Size: 1.32 KB
Versions: 1
Compression:
Stored size: 1.32 KB
Contents
module SnapshotInspector class Snapshot class TestUnitContext < Context test_framework :test_unit attr_reader :test_framework, :test_case_name, :method_name, :source_location, :take_snapshot_index # @private def extract(context) @test_framework = context[:test_framework] @test_case_name = context[:test_case_name] @method_name = context[:method_name] @source_location = context[:source_location] @take_snapshot_index = context[:take_snapshot_index] end # @private def from_hash(hash) @test_framework = hash[:test_framework].to_sym @test_case_name = hash[:test_case_name] @method_name = hash[:method_name] @source_location = hash[:source_location] @take_snapshot_index = hash[:take_snapshot_index] end def to_slug spec_path_without_extension = source_location[0].delete_suffix(File.extname(source_location[0])).delete_prefix(Rails.root.to_s + "/") [spec_path_without_extension, source_location[1], take_snapshot_index].join("_") end def name method_name.gsub(/^test_/, "").humanize(capitalize: false) end def test_group test_case_name end def order_index source_location.dup << take_snapshot_index end end end end
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
snapshot_inspector-0.1.1 | app/models/snapshot_inspector/snapshot/test_unit_context.rb |