// // Created by AUTHOR. // Copyright © YEAR AUTHOR. All rights reserved. //

//#import “Spec.h” - this header should have imports of Specta, Expecta, OCMokito, OCHamrest import “VIPERPresenter.h”

SpecBegin(VIPERPresenter)

describe(@“VIPERPresenter”,^{

__block VIPERPresenter *sut;

beforeEach(^{

});

afterEach(^{
    sut = nil;
});

describe(@"VIPERPresenterComponent",{
    it(@"VIPERPresenterComponent should pass test",{

    });
});

});

SpecEnd