mirror of
https://codeberg.org/secana/Forji.git
synced 2026-06-16 05:13:55 -07:00
12 lines
434 B
Swift
12 lines
434 B
Swift
import Foundation
|
|
import Testing
|
|
@testable import Forji
|
|
|
|
struct CacheInvalidationTests {
|
|
|
|
@Test func notificationNamesAreDistinct() {
|
|
#expect(Notification.Name.issuesDidChange != Notification.Name.pullRequestsDidChange)
|
|
#expect(Notification.Name.issuesDidChange != Notification.Name.repositoriesDidChange)
|
|
#expect(Notification.Name.pullRequestsDidChange != Notification.Name.repositoriesDidChange)
|
|
}
|
|
}
|