brentsnook/shokkenki-consumer

View on GitHub
lib/shokkenki/consumer/dsl/term_dsl.rb

Summary

Maintainability
A
0 mins
Test Coverage
require 'shokkenki/term/json_paths_term'

module Shokkenki
  module Consumer
    module DSL
      module TermDSL
        def json paths
          Shokkenki::Term::JsonPathsTerm.new paths
        end
      end
    end
  end
end