Skip to content

Commit

Permalink
merge
Browse files Browse the repository at this point in the history
  • Loading branch information
Tyler-Lentz committed Oct 6, 2023
2 parents 575b5fc + a170491 commit b76ce0e
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 1 deletion.
9 changes: 9 additions & 0 deletions shell.nix
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
{ pkgs ? import <nixpkgs> {} }:

pkgs.mkShell {
buildInputs = [
pkgs.gcc
pkgs.cmake
];
}

2 changes: 1 addition & 1 deletion tests/hello_test2.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,6 @@ TEST(HelloTest, BasicAssertions) {
EXPECT_STRNE("hello", "world");
// Expect equality.
EXPECT_EQ(7 * 6, 42);
EXPECT_GT(3, 8);
EXPECT_LT(3, 8);
}

0 comments on commit b76ce0e

Please sign in to comment.