Sha256: 2d12f435c0bb147fbff47f29e3ac97b5e120c192ea1ff34c8a8209bcef44f3ef
Contents?: true
Size: 445 Bytes
Versions: 160
Compression:
Stored size: 445 Bytes
Contents
describe KnapsackPro::Utils do describe '.unsymbolize' do let(:test_files) do [ { path: 'a_spec.rb', time_execution: 0.1 }, { path: 'b_spec.rb', time_execution: 0.2 }, ] end subject { described_class.unsymbolize(test_files) } it do should eq([ { 'path' => 'a_spec.rb', 'time_execution' => 0.1 }, { 'path' => 'b_spec.rb', 'time_execution' => 0.2 }, ]) end end end
Version data entries
160 entries across 160 versions & 1 rubygems