Skip to content

Commit

Permalink
fix: quine tests shouldn't be enabled yet. Oops.
Browse files Browse the repository at this point in the history
  • Loading branch information
dylanbeattie committed Oct 12, 2024
1 parent 1f95e9b commit 3de39b8
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 11 deletions.
11 changes: 0 additions & 11 deletions Starship/Rockstar.Test/ParserTests.cs
Original file line number Diff line number Diff line change
Expand Up @@ -8,17 +8,6 @@ public class ParserTests(ITestOutputHelper output) : FixtureBase(output) {
public void Parse(RockFile file) => TestParser(file);
}

public class QuineTests(ITestOutputHelper testOutput) : RockstarTestBase(testOutput) {
[Theory]
[InlineData("quine")]
[InlineData("this is a quine")]
[InlineData("shout quine")]
public void Quines(string program) {
var (_, output) = RunProgram(program);
output.ShouldBe(program);
}
}

public class ArgumentTests {
[Theory]
[InlineData("arguments")]
Expand Down
12 changes: 12 additions & 0 deletions Starship/Rockstar.Test/QuineTests.cs
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
namespace Rockstar.Test;

public class QuineTests(ITestOutputHelper testOutput) : RockstarTestBase(testOutput) {
//[Theory]
//[InlineData("quine")]
//[InlineData("this is a quine")]
//[InlineData("shout quine")]
//public void Quines(string program) {
// var (_, output) = RunProgram(program);
// output.ShouldBe(program);
//}
}

0 comments on commit 3de39b8

Please sign in to comment.