CourseInsights / test / resources / queries / valid / simpleFail.json
simpleFail.json
Raw
{
	"title": "simpleFail",
	"input": {
		"WHERE": {
			"EQ": {
				"sections_fail": 100
			}
		},
		"OPTIONS": {
			"COLUMNS": [
				"sections_dept",
				"sections_fail"
			],
			"ORDER": "sections_fail"
		}
	},
	"errorExpected": false,
	"orderExpected": true,
	"orderBy": "sections_fail",
	"expected": [
		{
			"sections_dept": "math",
			"sections_fail": 100
		},
		{
			"sections_dept": "math",
			"sections_fail": 100
		},
		{
			"sections_dept": "math",
			"sections_fail": 100
		},
		{
			"sections_dept": "math",
			"sections_fail": 100
		},
		{
			"sections_dept": "comm",
			"sections_fail": 100
		}
	]
}