This commit is contained in:
2018-12-06 00:37:45 +00:00
parent 96b18a8a27
commit fbb6959289
2 changed files with 5 additions and 3 deletions

View File

@@ -11,6 +11,8 @@ SON OF TAGS
//done - How to set GIN index? is it automatic? Do I need to specify it?
- Test setting a widget tag collection to see it works with ef core
- Seed widget with predictable tags (Maybe colour names "red", "green", "blue" etc)
- Run a tag search test
- Unicode tag names as well!!!!
- Update tag count / cloud maybe if that's a feature? Or fuck it it can be added any time
SERVER SCHEMA

View File

@@ -7162,7 +7162,7 @@ namespace raven_integration
//
#region TAG TESTS
/// <summary>
/// <summary>
///
/// </summary>
[Fact]
@@ -7205,7 +7205,7 @@ namespace raven_integration
//first exclusive widget
w.name = Util.Uniquify(WidgetRunNameStart);
//Tags
//Tags
dynamic ExclusiveTagsArray = new JArray();
ExclusiveTagsArray.Add("crimson-tag-test");
ExclusiveTagsArray.Add("amber-tag-test");
@@ -7251,7 +7251,7 @@ namespace raven_integration
dynamic DataFilterActive = new JObject();
DataFilterActive.fld = "tags";
DataFilterActive.op = OpEquality;
dynamic FilterTagsArray = new JArray();
dynamic FilterTagsArray = new JArray();
FilterTagsArray.Add("red-tag-test");
FilterTagsArray.Add("green-tag-test");//green is the only one missing from the exclusive widget
FilterTagsArray.Add("blue-tag-test");