(t *testing.T)
| 13 | } |
| 14 | |
| 15 | func TestColorForProjectState(t *testing.T) { |
| 16 | assert.Equal(t, "green", ColorForProjectState(queries.Project{})) |
| 17 | assert.Equal(t, "gray", ColorForProjectState(queries.Project{Closed: true})) |
| 18 | } |
nothing calls this directly
no test coverage detected