Forge
csharpdeeb25a2
1#nullable enable
2
3using CascadeIDE.Features.Chat;
4using Xunit;
5
6namespace CascadeIDE.Tests;
7
8public sealed class ChatSlashLegacyIntercomTests
9{
10 [Theory]
11 [InlineData("/topic list")]
12 [InlineData("/spine show")]
13 [InlineData("/overview")]
14 [InlineData("/attach selection")]
15 [InlineData("/card My")]
16 [InlineData("/thread next")]
17 public void LegacyTopLevel_DoesNotResolve(string line)
18 {
19 ChatSlashCatalogTestSupport.AssertDoesNotResolve(line);
20 }
21
22 [Fact]
23 public void IntercomTopicList_Resolves()
24 {
25 ChatSlashCatalogTestSupport.AssertResolves("/intercom topic list", "/intercom topic list");
26 }
27}
28
View only · write via MCP/CIDE