We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7142e79 commit 77d4c18Copy full SHA for 77d4c18
test/cohort_analysis_test.rb
@@ -11,15 +11,15 @@ def test_cohort_time
11
assert_match "1 cohort", response.body
12
end
13
14
- def test_missing_columns
15
- run_query "SELECT 1 /* cohort analysis */", query_id: 1
16
- assert_match "alert-danger", response.body
17
- end
18
-
19
def test_cohort_period_default
20
query = create_query(statement: "SELECT 1 AS user_id, NOW() AS conversion_time /* cohort analysis */")
21
get blazer.query_path(query)
22
assert_response :success
23
assert_match %{selected="selected" value="week"}, response.body
24
+
+ def test_missing_columns
+ run_query "SELECT 1 /* cohort analysis */", query_id: 1
+ assert_match "alert-danger", response.body
+ end
25
0 commit comments