Background:
When include_json spec fails, the information was "Expected included JSON" or "Expected excluded JSON". It is not very informative, thus this pull request.
In this PR, the following message will throw for a include_json case
%([[1,2,3],[4,5,6]]).should include_json(%([1,2]))
1) JsonSpec::Matchers::IncludeJson matches an array included in an array
Failure/Error: json.should include_json(%([1,2]))
Expected [[1,2,3],[4,5,6]] included [1,2]
Background: When include_json spec fails, the information was "Expected included JSON" or "Expected excluded JSON". It is not very informative, thus this pull request.
In this PR, the following message will throw for a include_json case