Skip to content

Commit

Permalink
T fix
Browse files Browse the repository at this point in the history
  • Loading branch information
heinsaar committed Dec 19, 2023
1 parent 2a3d496 commit 092cfbf
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions tests/test_file.h
Original file line number Diff line number Diff line change
Expand Up @@ -23,14 +23,14 @@ void main_test_file()
zen::string license = lic.getline(3);

// TODO: Add cases here
ZEN_EXPECT(version.contains("1.0.0.0000"));
ZEN_EXPECT(version.contains("0.1.0.0000"));
ZEN_EXPECT(license.contains("MIT"));

zen::string ver = version.extract_version();

zen::version v(ver);
ZEN_EXPECT(v.major() == 1);
ZEN_EXPECT(v.minor() == 0);
ZEN_EXPECT(v.major() == 0);
ZEN_EXPECT(v.minor() == 1);
ZEN_EXPECT(v.patch() == 0);
ZEN_EXPECT(v.build() == 0000);

Expand Down

0 comments on commit 092cfbf

Please sign in to comment.