Skip to content

Commit

Permalink
Tao patch (#195)
Browse files Browse the repository at this point in the history
* Create Tao Boyce.md

* added Tao Boyce to credits

* updated credits tests

---------

Co-authored-by: Emil Harvey <[email protected]>
  • Loading branch information
TaoBoyce and ehharvey authored Oct 6, 2024
1 parent ad43546 commit 301b1bc
Show file tree
Hide file tree
Showing 3 changed files with 23 additions and 2 deletions.
3 changes: 2 additions & 1 deletion app-test/CreditsTests.cs
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ public void TestGetCreditsType()
[Fact]
public void TestGetCreditsLength()
{
Assert.Equal(8, credits.GetCredits().Length);
Assert.Equal(9, credits.GetCredits().Length);
}

[Fact]
Expand All @@ -27,5 +27,6 @@ public void TestGetCreditsContent()
Assert.Equal("Shaik Mathar Syed", credits.GetCredits()[5]);
Assert.Equal("Bharat Chauhan", credits.GetCredits()[6]);
Assert.Equal("Prabhdeep Singh", credits.GetCredits()[7]);
Assert.Equal("Tao Boyce", credits.GetCredits()[8]);
}
}
6 changes: 5 additions & 1 deletion app/Credits.cs
Original file line number Diff line number Diff line change
Expand Up @@ -64,6 +64,9 @@ private String BharatCredits() {
private String PrabhdeepSinghCredits() {
return "Prabhdeep Singh";
}
private String TaoBoyceCredits() {
return "Tao Boyce";
}
public String[] GetCredits() {
return new string[] {
EhharveyCredits(),
Expand All @@ -73,7 +76,8 @@ public String[] GetCredits() {
DaphneCredits(),
SyedCredits(),
BharatCredits(),
PrabhdeepSinghCredits()
PrabhdeepSinghCredits(),
TaoBoyceCredits()
};
}

Expand Down
16 changes: 16 additions & 0 deletions wiki/contributors/Tao Boyce.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
---
Frontend: true
Backend: true
Operations: false
pronouns: any
---
# About Me
Salutations friend, I am Tao Boyce.
## Interests
🎮 Video games
Lots and LOTS of indie games, mainly single player strategy and card games. Lots more roguelikes too.
🎶 Music
Listens to a lot of unusual music, like [Avalanche's Frontier Psychiatrist](https://youtu.be/qLrnkK2YEcE)

## Career
Second year of Bachelor of Computer Science at Conestoga

0 comments on commit 301b1bc

Please sign in to comment.