Skip to content

Commit

Permalink
[Tests]: Port Two Shoulds from BabyMock
Browse files Browse the repository at this point in the history
  • Loading branch information
seandenigris committed Jul 20, 2024
1 parent b246ab0 commit 883c5ec
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/LivingLibrary/LivingLibraryFeatures.class.st
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ LivingLibraryFeatures >> testImportAcademicPaper [
title: title;
author: author.
library beAwareOf: paper.
(library hasCardFor: paper) should beTrue
(library hasCardFor: paper) should be: true
]

{ #category : #'as yet unclassified' }
Expand All @@ -38,7 +38,7 @@ LivingLibraryFeatures >> testImportEBookIntoSystem [
authors: { author1. author2 }
yourself.
library beAwareOf: ebook.
(library hasCardFor: ebook) should beTrue
(library hasCardFor: ebook) should be: true
]

{ #category : #'as yet unclassified' }
Expand Down

0 comments on commit 883c5ec

Please sign in to comment.