• Home
  • Features
  • Pricing
  • Docs
  • Announcements
  • Sign In

AsaiYusuke / jsonpath / 16410926563

21 Jul 2025 07:14AM UTC coverage: 17.851% (-79.5%) from 97.363%
16410926563

Pull #46

github

AsaiYusuke
refactor: move syntax and tests to internal directory

Separate directory structure from public API by relocating syntax
and test files under internal/ directory structure.
Pull Request #46: Move syntax to the internal directory and reorganize tests

181 of 406 new or added lines in 17 files covered. (44.58%)

3 existing lines in 1 file now uncovered.

676 of 3787 relevant lines covered (17.85%)

17.95 hits per line

Source File
Press 'n' to go to next uncovered line, 'b' for previous

0.0
/jsonpath.go
1
package jsonpath
2

3
import (
4
        "github.com/AsaiYusuke/jsonpath/internal/syntax"
5
)
6

UNCOV
7
func Retrieve(jsonPath string, src interface{}, config ...Config) ([]interface{}, error) {
×
NEW
8
        return syntax.Retrieve(jsonPath, src, config...)
×
UNCOV
9
}
×
10

NEW
11
func Parse(jsonPath string, config ...Config) (func(src interface{}) ([]interface{}, error), error) {
×
NEW
12
        return syntax.Parse(jsonPath, config...)
×
UNCOV
13
}
×
STATUS · Troubleshooting · Open an Issue · Sales · Support · CAREERS · ENTERPRISE · START FREE · SCHEDULE DEMO
ANNOUNCEMENTS · TWITTER · TOS & SLA · Supported CI Services · What's a CI service? · Automated Testing

© 2026 Coveralls, Inc